home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
PASSRC.ZIP
/
TIMEDATE.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-04
|
416b
|
15 lines
(* Chapter 16 - Program 7 *)
program Get_Time_And_Date;
uses Dos;
var Year,Month,Day,Weekday : word;
Hour,Minute,Second,Hundredths : word;
begin
GetTime(Hour, Minute, Second, Hundredths);
GetDate(Year, Month, Day, Weekday);
Writeln('The date is ',Month:2,'/',Day:2,'/',Year);
Writeln('The time is ',Hour:2,':',Minute:2,':',Second:2);
end.